home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / pdclk145.zip / MAKEFILE < prev    next >
Text File  |  1992-05-17  |  793b  |  35 lines

  1. #
  2. # makefile for PDCLKSET for Turbo Make.  MS-Make loses.
  3. #
  4. # Note: You need some asm-files from the Crynwr (former Clarkson) collection
  5. # of packet drivers, available from simtel20.army.mil, oak.oakland.edu,
  6. # wuarchive.wustl.edu, and others, in the packet drivers directory.
  7.  
  8. ASM    =    tasm
  9. LINK    =    tlink
  10.  
  11. all:        progs
  12.  
  13. progs:        pdclkset.com
  14.  
  15. .asm.obj:
  16.         $(ASM) $*;
  17.  
  18. pdclkset.obj:    pdclkset.asm settime.asm ip.asm arp.asm bufs.asm \
  19.         pktdr.asm ping.asm tblbuild.asm \
  20.         defs.asm chrout.asm skipblk.asm movemem.asm pkterr.asm 
  21. #
  22. # (the files on the last line above are from the Crynwr packet driver 
  23. #  collection)
  24.  
  25. pdclkset.com: pdclkset.obj
  26.     $(LINK) pdclkset,pdclkset/m;
  27.     exe2com pdclkset
  28.     del pdclkset.exe
  29.  
  30. clean: nul
  31.     del *.obj
  32.     del *.com
  33.     del *.exe
  34.     del *.map
  35.